home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Tools / idle / README.txt < prev    next >
Encoding:
Text File  |  2000-09-05  |  1.5 KB  |  47 lines

  1. IDLE 0.6
  2. --------
  3.  
  4. Copyright (c) 1998-2000 Corporation for National Research Initiatives.
  5.  
  6. This is IDLE, my own attempt at a Tkinter-based IDE for Python.
  7.  
  8. For news about this release, see the file NEWS.txt.  (For a more
  9. detailed change log, see the file ChangeLog.)
  10.  
  11. FEATURES
  12.  
  13. IDLE has the following features:
  14.  
  15. - coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)
  16.  
  17. - cross-platform: works on Windows and Unix (on the Mac, there are
  18. currently problems with Tcl/Tk)
  19.  
  20. - multi-window text editor with multiple undo, Python colorizing
  21. and many other features, e.g. smart indent and call tips
  22.  
  23. - Python shell window (a.k.a. interactive interpreter)
  24.  
  25. - debugger (not complete, but you can set breakpoints, view  and step)
  26.  
  27. USAGE
  28.  
  29. The main program is in the file "idle.py"; on Unix, you should be able
  30. to run it by typing "./idle.py" to your shell.  On Windows, you can
  31. run it by double-clicking it; you can use idle.pyw to avoid popping up
  32. a DOS console.  If you want to pass command line arguments on Windows,
  33. use the batch file idle.bat.
  34.  
  35. Command line arguments: files passed on the command line are executed,
  36. not opened for editing, unless you give the -e command line option.
  37. Try "./idle.py -h" to see other command line options.
  38.  
  39. RESOURCES
  40.  
  41. IDLE home page: http://www.python.org/idle/
  42. CP4E home page: http://www.python.org/cp4e/
  43. EDU-SIG: http://www.python.org/sigs/edu-sig/
  44. IDLE-DEV mailing list: http://www.python.org/mailman/listinfo/idle-dev
  45.  
  46. --Guido van Rossum (home page: http://www.pythonlabs.com/~guido/)
  47.